/*this datalist my style*/
.formmyaccount {
    display: none;
}

.formmyaccount__title {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    font-family: sans-serif;
    /*text-decoration-line: underline;*/
}

.formmyaccount__content {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    font-family: sans-serif;
}
.formmyaccount__content {
    display: block;
    width: 100%;
    padding: 0.75rem;
}
.formmyaccount__input__group-left {
    width: 50%;
    height:100%;
    float: left;
}
.formmyaccount__input__group-right {
    width: 50%;
    height: 100%;
    float: right;
}
.formmyaccount__input {
    display: block;
    width: 94%;
    padding: 0.75rem;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    border: 1px solid #dddddd;
    outline: none;
    background: #eeeeee;
    transition: background 0.2s, border-color 0.2s;
}
.formmyaccount__input:focus {
    border-color: var(--color-primary);
    background: #ffffff;
}
#accountPassword2 {
    display: none;
}
.formmyaccount__button {
    width: 80%;
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    background-color: var(--color-primary);
}
.formmyaccount__button:hover {
        background: var(--color-primary_dark);
}
.formmyaccount__button:active {
        transform: scale(0.98);
}
.form__account-error-message {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-error);
    display: 'none';
}
